home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
snip9503
/
biport.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-14
|
331b
|
17 lines
/*
** BIPORT.C - Port TC/TC++/BC++ code using register pseudovariables
**
** public domain by Bob Stout
*/
#include "biport.h"
union REGS BIP_regs_;
struct SREGS BIP_sregs_;
unsigned _pascal geninterrupt(int int_no)
{
int86x(int_no, &BIP_regs_, &BIP_regs_, &BIP_sregs_);
return BIP_regs_.x.ax;
}